home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Documents / JAVA Programming / examples / 07 / Point.java < prev    next >
Encoding:
Java Source  |  2000-09-08  |  253 b   |  16 lines

  1. class Point { int x, y;
  2. Point(int x, int y) {
  3. this.x = x;
  4. this.y = y;
  5. }
  6. Point() {
  7. this(-1, -1);
  8.  
  9. public static void main(String args[]) {
  10. Point p = new Point();
  11. p.x = 10;
  12. p.y = 20;
  13. System.out.println("x = " + p.x + " π = " + p.y);
  14. } }
  15.